function LocalConnection() // It is a constructor. It creates a LocalConnection object.
function close() // It disconnects a LocalConnection object.
function connect(connectionName) // It prepares the LocalConnection object to receive commands from a LocalConnection.send() command.
function domain() // It returns a string representing the domain where the location of the current SWF file is.
function send(connectionName, method, p1,í¡pN) // It invokes the method named method on a connection.
function allowDomain() // It is Invoked whenever the current (receiving) LocalConnection object receives a request to invoke a method from a sending LocalConnection object.
function allowInsecureDomain() // It is Invoked whenever the current (receiving) LocalConnection object, which is in a SWF file hosted at a domain using a secure protocol (HTTPS), receives a request to invoke a method from a sending LocalConnection object that is in a SWF file that is hosted at a nonsecure protocol.
function onStatus() // It is Invoked after a sending LocalConnection object tries to send a command to a receiving LocalConnection object.